In here are the list of things I did for a particular hour or day. Also included here are the screenshots of games I played, or videos I watched or listened to, or just random things I stumbled upon. I'll occasionally write down what I'm thinking, or things I'm planning to do.
I checked out sympy, a computer algebra system in python. sqrt(x)/x does indeed simplify to 1/sqrt(x). ... It took me too long to realize that sqrt(x) is not x^-2, but actually x^0.5
Nah, fuck this shit, I'm undoing all the changes I made today to moon-temple, I just added a bunch of pasta spaghetti monstrosity just to save me save keystrokes when reloading my changes.
On an unrelated note, I think I want to create a mini-simple computer algebra system, like an interactive math equation builder. That way, I'll have more fun manipulating equation with a keyboard. It'll be simple, just a symbolic modifier.
Something like this:
repl:
> expr = createExpression()
> expr // (nothing)
> expr.add(sym.x) // x
> expr.add(sym.x) // x + x
> expr.mul(sym.y) // (x + x)y
> expr.distribute() // xy + xy
> expr.factor(sym.x) // x(y + y)
> expr[1].combine() // x2y
> expr.swap(1,2) // 2yx
I've been trying to run a file watcher using neovim lua scripts using like nvim -l script.lua, but nothing is working so far, even the official examples. I'm guessing libuv doesn't work well with -l.
Or not, I should ask reddit or other neovim support channels.
site last updated on 2024-10-16 | created with moontpl